home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem Copy CATALOG, or appropriate REPORT or CHART file to LPT1:
- rem CATALOG.DOC, PN.RPT, INT.RPT, NUMRW.RPT, RELRW.RPT, NUM.CHT
- if "%1"=="C" goto cat
- if "%1"=="c" goto cat
- if "%1"=="P" goto pn
- if "%1"=="p" goto pn
- if "%1"=="I" goto int
- if "%1"=="i" goto int
- if "%1"=="N" goto numrw
- if "%1"=="n" goto numrw
- if "%1"=="R" goto relrw
- if "%1"=="r" goto relrw
- if "%1"=="U" goto num
- if "%1"=="u" goto num
- cls
- echo
- echo ┌───────────────────────────────────────────────────────────┐
- echo │ │
- echo │ P R O D U C T C A T A L O G │
- echo │ │
- echo └───────────────────────────────────────────────────────────┘
- echo
- echo We offer a full family of numerology software for both
- echo Personal and Professional use. A complete Catalog as well as
- echo full length report samples from each of the programs can be
- echo printed by entering the command:
- echo
- echo CATALOG X
- echo where:
- echo
- echo X is C for Catalog of Numerology Programs & Books (7 pages)
- echo X is P for a sample from Personal Numerologist (8 pages)
- echo X is I for a sample from Intimacy (8 pages)
- echo X is N for a sample from Numerologist Report Writer (14 pages)
- echo X is R for a sample from Relationship Report Writer (16 pages)
- echo X is U for a sample from The Numerologist (5 pages)
- echo
- echo For example, to print Catalog, type CATALOG C and press ENTER.
- goto end
- :cat
- echo
- echo Printing Catalog & Order Form. . .
- echo
- copy catalog.doc lpt1:
- echo
- echo Printing completed
- goto end
- :pn
- echo
- echo Printing sample report from Personal Numerologist. . .
- echo
- copy pn.rpt lpt1:
- echo
- echo Printing completed
- goto end
- :int
- echo
- echo Printing sample report from Intimacy. . .
- echo
- copy int.rpt lpt1:
- echo
- echo Printing completed
- goto end
- :numrw
- echo
- echo Printing sample report from Numerologist Report Writer. . .
- echo
- copy numrw.rpt lpt1:
- echo
- echo Printing completed
- goto end
- :relrw
- echo
- echo Printing sample report from Relationship Report Writer. . .
- echo
- copy relrw.rpt lpt1:
- echo
- echo Printing completed
- goto end
- :num
- echo
- echo Printing sample chart from The Numerologist. . .
- echo
- copy num.cht lpt1:
- echo
- echo Printing completed
- goto end
- :end
- echo